Various fixes#32
Merged
Merged
Conversation
…ugConsole, DebugFilters, DeviceFilterDropdown, and LoginForm components
Contributor
There was a problem hiding this comment.
Pull request overview
This PR addresses issue #30 by enhancing the Debug Console with an “Export Log” capability and improving filter usability (device ordering/labeling and search tokenization), alongside minor UI/code-style touch-ups.
Changes:
- Added an “Export Log” button to export the currently filtered debug log to a
.logfile. - Improved filtering UX by sorting devices by ID and displaying device labels with their IDs.
- Refined search tokenization to ignore empty tokens in URL-params mode.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
src/features/DebugConsole/DebugConsole.tsx |
Adds filtered-log export button and export implementation. |
src/features/DebugConsole/DebugFilters.tsx |
Changes device dropdown ordering to sort by device ID. |
src/features/DebugConsole/DeviceFilterDropdown.tsx |
Updates device checkbox labels to include the device ID. |
src/shared/FilterSearchText.tsx |
Improves URL-param tokenization by removing empty tokens. |
src/features/LoginForm.tsx |
Standardizes imports to single quotes and adjusts loading-state timing/comment. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
andrew-welker
previously approved these changes
May 21, 2026
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
andrew-welker
approved these changes
May 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #30
This pull request introduces a new export feature to the Debug Console, improves filtering and device labeling, and makes several minor code style and UI enhancements. The most notable update is the ability to export the currently filtered debug log to a file directly from the UI.
Debug Console Export Feature:
.logfile. The export includes timestamp, log level, optional key, and the rendered message for each log entry. The button is disabled if there are no filtered items. (DebugConsole.tsx) [1] [2]Filtering and Device List Improvements:
DebugFilters.tsx)DeviceFilterDropdown.tsx)FilterSearchText.tsx)Code Style and Minor UI Improvements:
DebugConsole.tsx,LoginForm.tsx) [1] [2]LoginForm.tsx) [1] [2]